home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / IBMole / IBMole.h next >
Text File  |  1995-04-12  |  800b  |  37 lines

  1. //
  2. //    IBMole.h -- a way to play with IB via disributed objects
  3. //        Written by Montgomery Zukowski
  4. //        Copyright (c) 1994 by Montgomery Zukowski.
  5. //                Version 1.0.  All rights reserved.
  6. //
  7. //        This notice may not be removed from this source code.
  8. //
  9. //    This object is included in the MiscKit by permission from the author
  10. //    and its use is governed by the MiscKit license, found in the file
  11. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  12. //    for a list of all applicable permissions and restrictions.
  13. //    
  14.  
  15. #import <apps/InterfaceBuilder.h>
  16. #import <remote/NXConnection.h>
  17.  
  18. @protocol IBSecretAgent
  19.  
  20. - ibApp;
  21. - docList;
  22. - getClass:(const char *)aClassName;
  23.  
  24. @end
  25.  
  26. @interface IBMole:IBPalette <IBSecretAgent>
  27. {
  28.  
  29.     NXConnection    *tunnel;
  30.     List            *docList;
  31. }
  32.  
  33. - init;
  34. - free;
  35.  
  36. @end
  37.